home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 3
/
Gold Medal Software - Volume 3 (Gold Medal) (1994).iso
/
os2
/
te2_130t.arj
/
TE2INST.003
/
Button1.scr
next >
Wrap
Text File
|
1994-03-28
|
2KB
|
41 lines
/* ---------------------------------------------------------------------- */
/* Button1.Scr -- TE/2 REXX Syntax Script */
/* Copyright 1994, Oberon Software */
/* All rights reserved */
/* */
/* Sample script to document the use of TE2PWin */
/* */
/* ---------------------------------------------------------------------- */
Txt.0 = 20
Txt.1 = "Congratulations! If you're seeing this you have either already"
Txt.2 = 'successfully installed TE2PWin.Exe with the sample profile'
Txt.3 = '(or you got curious and executed this script directly). Assuming'
Txt.4 = 'the latter case, here is a brief outline of how to install and'
Txt.5 = 'use TE2PWin.'
Txt.6 = ''
Txt.7 = 'First: Make sure that the TE2PIPE setting in your TE2.INI file'
Txt.8 = ' is defined. The TE/2 install sets this up for you with'
Txt.9 = ' a default pipe name of \pipe\TE2Pipe.'
Txt.10 = 'Second: Make sure that the PIPE setting in TE2PWin.pro reads'
Txt.11 = ' the same as the TE2PIPE setting (again, the default is'
Txt.12 = ' set at \pipe\TE2Pipe.'
Txt.13 = 'Finally: Execute TE2PWin.Exe with the name of the profile file'
Txt.14 = ' on its command line.'
Txt.15 = ''
Txt.16 = "That's it! Next you'll want to customize your profile. Press"
Txt.17 = 'button 2 in TE2PWin to execute BUTTON2.Scr which talks about'
Txt.18 = 'how to do that.'
Txt.19 = ''
Txt.20 = 'Press any key to clear this display and return control to TE/2.'
'WindowMinMax(2)'
'sprintf("[%ld", OpenDialog(0, 2, 23, 76, DLogNormAttr))'
h = substr(rc, 2)
do i = 1 to Txt.0
'StrPut('i+1', 6, DLogNormAttr, "%s", "'Txt.i'")'
end
'getc()'
'CloseDialog('h')'
exit 0